home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / Guitar / Fir3UG.h < prev    next >
Encoding:
Text File  |  1992-07-28  |  636 b   |  28 lines

  1. /* This is a prototype of the class interface you will write.
  2.    Generated by dspwrap.*/
  3. /*  Copyright (c) 1992 - Rick A. Vander Kam - All rights reserved */
  4.  
  5. #import <musickit/UnitGenerator.h>
  6.  
  7. @interface Fir3UG : UnitGenerator
  8. {
  9.  /* Instance variables go here */
  10. }
  11.  
  12. /*
  13.  * Methods for poking the unit generator's DSP memory arguments
  14.  * once it is loaded into the DSP orchestra.
  15.  */
  16. - setInput:(id)aPatchPoint;
  17. - setOutput:(id)aPatchPoint;
  18. - clear;
  19. - setBb2:(double)aDouble;
  20. - setBb1:(double)aDouble;
  21. - setBb0:(double)aDouble;
  22.  
  23. /*
  24.  * Method for "turning off" a unit generator by patching all its outputs to "sink"
  25.  */
  26. - idleSelf;
  27.  
  28. @end